home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Periodicals / develop / develop 4 code / C++ Driver / SendSample / SendSample.make < prev    next >
Encoding:
Text File  |  1990-04-08  |  2.2 KB  |  69 lines  |  [TEXT/MPS ]

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    MultiFinder-Aware Simple SendSample Application
  5. #
  6. #    SendSample
  7. #
  8. #    [C]SendSample.make    -    Make Source
  9. #
  10. #    Copyright © 1989 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    
  14. #                1.00                08/88
  15. #                1.01                11/88
  16. #                1.02                04/89    MPW 3.1
  17. #
  18. #    Components:
  19. #                SendSample.p            April 1, 1989
  20. #                SendSample.c            April 1, 1989
  21. #                SendSample.a            April 1, 1989
  22. #                SendSample.inc1.a        April 1, 1989
  23. #                SendSampleMisc.a        April 1, 1989
  24. #                SendSample.r            April 1, 1989
  25. #                SendSample.h            April 1, 1989
  26. #                [P]SendSample.make        April 1, 1989
  27. #                [C]SendSample.make        April 1, 1989
  28. #                [A]SendSample.make        April 1, 1989
  29. #
  30. #    SendSample is an example application that demonstrates how to
  31. #    initialize the commonly used toolbox managers, operate 
  32. #    successfully under MultiFinder, handle desk accessories, 
  33. #    and create, grow, and zoom windows.
  34. #
  35. #    It does not by any means demonstrate all the techniques 
  36. #    you need for a large application. In particular, SendSample 
  37. #    does not cover exception handling, multiple windows/documents, 
  38. #    sophisticated memory management, printing, or undo. All of 
  39. #    these are vital parts of a normal full-sized application.
  40. #
  41. #    This application is an example of the form of a Macintosh 
  42. #    application; it is NOT a template. It is NOT intended to be 
  43. #    used as a foundation for the next world-class, best-selling, 
  44. #    600K application. A stick figure drawing of the human body may 
  45. #    be a good example of the form for a painting, but that does not 
  46. #    mean it should be used as the basis for the next Mona Lisa.
  47. #
  48. #    We recommend that you review this program or TESendSample before 
  49. #    beginning a new application.
  50. #
  51. #     You can define {SymOptions} as "-sym on" or "-sym off" for use with SADE
  52. #     We also recommend requiring prototypes for all functions
  53. COptions = -r {SymOptions}
  54.                             
  55. CObjs        = SendSample.c.o ∂
  56.         "{CLibraries}"CRuntime.o ∂
  57.         "{CLibraries}"StdCLib.o ∂
  58.         "{CLibraries}"CInterface.o ∂
  59.         "{Libraries}"Interface.o
  60.  
  61. SendSample        ƒƒ {CObjs} SendSample.make
  62.         Link -o {Targ} {CObjs} {SymOptions}
  63.         SetFile {Targ} -t APPL -c 'MOOS' -a B
  64.  
  65. SendSample        ƒƒ SendSample.r SendSample.h SendSample.make
  66.         Rez -rd -o {Targ} SendSample.r -append
  67.  
  68. SendSample.c.o    ƒƒ SendSample.make
  69.